home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 741 / rkrm_devices / rkrm_devices.lha / Timer / Get_Systime.c < prev    next >
C/C++ Source or Header  |  1992-09-03  |  4KB  |  113 lines

  1. /*
  2.  * Copyright (c) 1992 Commodore-Amiga, Inc.
  3.  * 
  4.  * This example is provided in electronic form by Commodore-Amiga, Inc. for 
  5.  * use with the "Amiga ROM Kernel Reference Manual: Devices", 3rd Edition, 
  6.  * published by Addison-Wesley (ISBN 0-201-56775-X).
  7.  * 
  8.  * The "Amiga ROM Kernel Reference Manual: Devices" contains additional 
  9.  * information on the correct usage of the techniques and operating system 
  10.  * functions presented in these examples.  The source and executable code 
  11.  * of these examples may only be distributed in free electronic form, via 
  12.  * bulletin board or as part of a fully non-commercial and freely 
  13.  * redistributable diskette.  Both the source and executable code (including 
  14.  * comments) must be included, without modification, in any copy.  This 
  15.  * example may not be published in printed form or distributed with any
  16.  * commercial product.  However, the programming techniques and support
  17.  * routines set forth in these examples may be used in the development
  18.  * of original executable software products for Commodore Amiga computers.
  19.  * 
  20.  * All other rights reserved.
  21.  * 
  22.  * This example is provided "as-is" and is subject to change; no
  23.  * warranties are made.  All use is at your own risk. No liability or
  24.  * responsibility is assumed.
  25.  *
  26.  *****************************************************************************
  27.  *
  28.  * Get_Systime.c
  29.  *
  30.  * Get system time example
  31.  *
  32.  * Compile with SAS C 5.10: LC -b1 -cfistq -v -y -L
  33.  *
  34.  * Run from CLI only
  35.  */
  36.  
  37. #include <exec/types.h>
  38. #include <exec/io.h>
  39. #include <exec/memory.h>
  40. #include <devices/timer.h>
  41.  
  42. #include <clib/exec_protos.h>
  43. #include <clib/alib_protos.h>
  44. #include <clib/dos_protos.h>
  45. #include <clib/intuition_protos.h>
  46.  
  47. #include <stdio.h>
  48.  
  49. #ifdef LATTICE
  50. int CXBRK(void) { return(0); }     /* Disable SAS CTRL/C handling */
  51. int chkabort(void) { return(0); }  /* really */
  52. #endif
  53.  
  54. struct timerequest *TimerIO;
  55. struct MsgPort *TimerMP;
  56. struct Message *TimerMSG;
  57.  
  58. VOID main(VOID);
  59.  
  60. void main()
  61. {
  62. LONG error;
  63. ULONG days,hrs,secs,mins,mics;
  64.  
  65. if (TimerMP = CreatePort(0,0))
  66.     {
  67.     if (TimerIO = (struct timerequest *)
  68.         CreateExtIO(TimerMP,sizeof(struct timerequest)) )
  69.         {
  70.             /* Open with UNIT_VBLANK, but any unit can be used */
  71.         if (!(error=OpenDevice(TIMERNAME,UNIT_VBLANK,(struct IORequest *)TimerIO,0L)))
  72.             {
  73.  
  74.             /* Issue the command and wait for it to finish, then get the reply */
  75.             TimerIO->tr_node.io_Command = TR_GETSYSTIME;
  76.             DoIO((struct IORequest *) TimerIO);
  77.  
  78.             /* Get the results and close the timer device */
  79.             mics=TimerIO->tr_time.tv_micro;
  80.             secs=TimerIO->tr_time.tv_secs;
  81.  
  82.             /* Compute days, hours, etc. */
  83.             mins=secs/60;
  84.             hrs=mins/60;
  85.             days=hrs/24;
  86.             secs=secs%60;
  87.             mins=mins%60;
  88.             hrs=hrs%24;
  89.  
  90.             /* Display the time */
  91.             printf("\nSystem Time (measured from Jan.1,1978)\n");
  92.             printf("  Days   Hours  Minutes Seconds Microseconds\n");
  93.             printf("%6ld %6ld %6ld %6ld %10ld\n",days,hrs,mins,secs,mics);
  94.  
  95.             /* Close the timer device */
  96.             CloseDevice((struct IORequest *) TimerIO);
  97.             }
  98.         else
  99.             printf("\nError: Could not open timer device\n");
  100.  
  101.         /* Delete the I/O request structure */
  102.         DeleteExtIO(TimerIO);
  103.         }
  104.     else
  105.         printf("\nError: Could not create I/O structure\n");
  106.  
  107.     /* Delete the port */
  108.     DeletePort(TimerMP);
  109.     }
  110. else
  111.     printf("\nError: Could not create port\n");
  112. }
  113.